The HyperText Markup Language (HTML) is a simple markup language that describes the structure and behavior of Web documents. HTML is the standard language that all Web browsers are designed to understand and interpret. HTML is implemented using another larger markup language -- the Standard Generalized Markup Language, usually known by its acronym, SGML. To create great Web documents, this is as much as you need to know about SGML. You'll find an incredible wealth of information about this topic online, as the URLs that follow next can attest.
HTML is used to structure text, graphics and other resources on the Internet. HTML
is one of the easiest computer-based languages to learn and use. Even so, creating
sophisticated and interesting pages does take time and effort. HTML is simply plain text.
An HTML document consists of two types of text:
character set used in HTML 2.0 is the ISO Latin-1 set [a subset of ISO-8859-1].
Other characters outside this charset will be added by HTML DTDs beyond the
2.0 specification, including character sets needed to represent foreign
languages (even non-Roman alphabet languages).
However, many browsers do not yet support these added characters, so until these new specifications are made standard, we suggest that you use them sparingly.
The core of HTML is its markup tags. These tags define the structure of a Web document. The DTD for HTML has been in development and revision for some time now. However, the Internet community has not sat idle waiting for these new standards to be defined.
Instead, new tags and formats are being developed and used almost daily. The HTML 2.0 DTD is the current standard that browsers support, but many browsers also include support for the emerging HTML standards, their own proprietary tags and extensions, and other external entities. When a browser encounters a tag that it doesn't recognize, one of the following things can happen:
As you write HTML documents you need to be aware that some useful tags are not universally accepted, nor are they sanctioned by the W3C.
If you're a Web surfer, we highly recommend obtaining a browser that is at least HTML 2.0 DTD compliant. If you use a browser that supports tables, HTML 3.0, Java and VRML you will get even more benefit from the Web.
We've listed many of the current HTML markup tags; please review each tag and its examples before implementing any of them.
An HTML document must follow strict structural rules in order to be properly interpreted by a browser. The most basic structure for a Web page is:
<HTML> <HEAD> <TITLE>Your Title</TITLE> <BASE HREF="http://host/path/filename"> </HEAD> <BODY>The content <ADDRESS> </ADDRESS> </BODY></HTML>
Using this structure and adding the relevant tags, creating a HTML document is simple. Before you rush into coding your first page, take a moment to decide what information you want in the page. Here is a list of some suggestions:
Once you've included what's relevant from this list of elements, everything else you can think of can be added easily to your own Web page thereafter.
In order to construct HTML documents, you will need a text editor or a specialized HTML editor. Learning to create HTML documents is done from looking at examples and trying them yourself. For an idea how a simple homepage might appear, take a look at: the page and its code.
Creating a Web page is very simple. Follow these steps and you will have created your first HTML document.
Congratulations! You are now a Web author!
From here on out, time and practice will be required to master the art of Web page creation. Examine and experiment with other Web pages to get new ideas, or to learn about design and layout approaches that you find appealing. If you can think of a concept, you can probably find a way to deliver that concept on a Web page.